summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-28 01:13:54 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-28 01:13:54 +0200
commit21675c9b68741d15b678598aa555536bfc6a6f76 (patch)
tree370eb6fd83bf86a050e2cbc9d28abc7ccf3cc8f9
parentsettings: Catch runtime_error, fallback time zone (diff)
downloadyuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar.gz
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar.bz2
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar.lz
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar.xz
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.tar.zst
yuzu-21675c9b68741d15b678598aa555536bfc6a6f76.zip
-rw-r--r--src/common/settings.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index a1df69140..6cbbea1b2 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -1,10 +1,11 @@
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
-#include <exception>
-#include <stdexcept>
+#include <version>
#if __cpp_lib_chrono >= 201907L
#include <chrono>
+#include <exception>
+#include <stdexcept>
#endif
#include <string_view>